From 497ab39ea343ca17b68f071d344f0530d58464ae Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Tue, 4 Mar 2025 02:35:41 +0800 Subject: [PATCH] gui/macOS: Fix emitted signal in file provider sync status GUI component Signed-off-by: Claudio Cambra --- src/gui/macOS/ui/FileProviderSyncStatus.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/macOS/ui/FileProviderSyncStatus.qml b/src/gui/macOS/ui/FileProviderSyncStatus.qml index cd6376679..61db9ae98 100644 --- a/src/gui/macOS/ui/FileProviderSyncStatus.qml +++ b/src/gui/macOS/ui/FileProviderSyncStatus.qml @@ -71,10 +71,10 @@ GridLayout { text: qsTr("Request sync") visible: !root.syncStatus.syncing hoverEnabled: true - onClicked: root.controller.signalFileProviderDomain(root.accountUserIdAtHost) + onClicked: root.domainSignalRequested() ToolTip.visible: hovered ToolTip.delay: Qt.styleHints.mousePressAndHoldInterval ToolTip.text: qsTr("Request a sync of changes for the VFS environment.\nmacOS may ignore or delay this request.") } -} \ No newline at end of file +} -- 2.30.2